ABC083 C - Multiple Gift
https://atcoder.jp/contests/abc083/tasks/arc088_a
提出
code: python
x, y = map(int, input().split())
num = x
ans = 0
while (num <= y):
num *= 2
ans += 1
print(ans)
テーマ
蟻本 2-2 Saruman's Army